Migrating from Next.js to Catalyst
Step 1: Project Setup
Create a new Catalyst project:
Perform the entire migration in a new folder to avoid dependency conflicts between Next.js and Catalyst.
Step 2: Project Structure
Understand the differences in project structure:
- Next.js:
pages/
public/
styles/ - Catalyst:
config/ # Configuration keys
src/ # Application source code
components/
routes/
services/
utils/
client/ # Client app entry point
server/ # API and middleware
build/ # Bundled code
- Next.js:
Move your existing components from various locations to
src/components/
.Relocate any utility functions to
src/utils/
.
Step 3: Routing
Replace Next.js file-based routing with Catalyst's route configuration.
Open src/routes/index.ts.
Define your routes using the
react-router-v6
style:const routes = [
{
path: "/",
index: true,
component: HomePage,
},
{
path: "/cart",
component: CartComponent,
children: [
{
path: "",
component: CartChild
},
{
path: "prescription",
component: Prescription
}
],
},
{
path: "/health-products",
component: HealthProducts,
},
]Update any dynamic routes to use react-router-v6 syntax.
Step 4: Pages and Components
Move your page components from
pages/
to act as route components in the routes definition.Ensure all other components are in
src/components/
.
Step 5: Data Fetching
Replace Next.js data fetching methods (
getServerSideProps, getStaticProps
) with Catalyst's data fetching methods:const HomePage = () => <div>HomePage</div>
HomePage.clientFetcher = (routerProps, fetcherArgs) => { return new Promise() }
HomePage.serverFetcher = (serverRouterProps, fetcherArgs) => { return new Promise() }Update components to use the useCurrentRouteData hook where necessary. This hook provides:
{ isFetching, isFetched, error, data, refetch, clear }
Step 6: API Routes
Move your API routes from
pages/api/
to theserver/
directory in Catalyst.Update middleware:
In Next.js, you used middleware.ts (or .js) in the project root.
In Catalyst, create a function named
addMiddlewares
that receives the app server instance.
Step 7: State Management
Next.js typically uses external libraries like Redux or React Context.
Catalyst provides built-in support for Redux and Redux Toolkit:
Set up the Redux store in
src/js/store/index.js
.Update components to use Catalyst's built-in Redux support.
If using other state management solutions:
Implement at the root of your Catalyst application.
Update components accordingly.
Step 8: Styling
Next.js has built-in CSS support and CSS Modules.
Catalyst supports CSS Modules similarly:
Update import statements in your components if necessary.
Ensure all styling files are properly located in your new project structure.
Step 9: Image Handling
Replace
next/image
usage with standard<img>
tags or create a custom image component.Update image paths to reflect the new project structure.
Step 10: Font Optimization
Remove
next/font
usage.Implement manual font optimization or integrate a third-party library for font management.
Step 11 :Script Management
Remove
next/script
usage.Implement manual script management or integrate React Helmet for script handling.
Step 12 :Layouts
Replace Next.js
_app.js
global layout with a Catalyst layout component.Integrate this layout component into your route definitions.
Step 13: Metadata and Head Management
Replace
next/head
usage with Catalyst's Head component:```javascript
import { Head, Body } from "catalyst"
```2.Update all components that were using next/head to use the new Head component.
Step 14: Environment Variables
Move environment variables from Next.js
process.env
to Catalyst'sconfig/config.json.
Separate client-side and server-side config.
List client-side variables in ```CLIENT_ENV_KEYS.
Step 15: TypeScript
Typescript is supported in version 0.0.1-canary.0
- Next.js has built-in TypeScript support.
Catalyst is built with TypeScript:
Ensure all your files use
.ts
or.tsx
extensions.Update any TypeScript configurations to align with Catalyst's setup.
Step 16: Build and Deployment
Update your build script from next build to Catalyst's build process:
npm run build
.Modify your deployment scripts and configurations to work with the new Catalyst build output.
Step 17: Final Checks
Update all import statements to reflect the new project structure.
Replace any remaining Next.js specific components or functions with their Catalyst equivalents or standard React/HTML alternatives.
Test your application thoroughly to ensure all features work as expected in the new Catalyst environment.